home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
IMGLIB95
/
BLOB.DP_
/
BLOB.DP
Wrap
Text File
|
1996-03-31
|
447b
|
19 lines
program Blob;
uses
Forms,
Ublob in 'UBLOB.PAS' {BlobForm1},
U_p_size in 'U_P_SIZE.PAS' {Printersize},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TBlobForm1, BlobForm1);
Application.CreateForm(TPrintersize, Printersize);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.